1. Module (chicken time)
    1. Retrieving timestamp information
      1. cpu-time
      2. current-process-milliseconds
      3. current-seconds
    2. Benchmarking macros
      1. time

Module (chicken time)

This module provides a few basic procedures for measuring time. For representation and manipulation of calendar time, see Module (chicken time posix).

Retrieving timestamp information

cpu-time

[procedure] (cpu-time)

Returns the used CPU time of the current process in milliseconds as two values: the time spent in user code, and the time spent in system code. On platforms where user and system time can not be differentiated, system time is always 0.

current-process-milliseconds

[procedure] (current-process-milliseconds)

Returns the number of milliseconds since process startup.

current-seconds

[procedure] (current-seconds)

Returns the number of seconds since midnight, Jan. 1, 1970.

Benchmarking macros

time

[syntax] (time EXP1 ...)

Performs a major garbage collection, evaluates EXP1 ... and prints elapsed CPU time and some values about GC use, like time spent in major GCs, number of minor and major GCs. The output is sent to the port that is the current value of (current-error-port). Nested invocations of this form will give incorrect results for all output but the innermost.


Previous: Module (chicken tcp)

Next: Module (chicken time posix)